home *** CD-ROM | disk | FTP | other *** search
/ Corbis Images Sampler - Red / RED.iso / pc / Interface / inter.dxr / 00186_cat behavior.ls < prev    next >
Encoding:
Text File  |  1999-12-21  |  447 b   |  19 lines

  1. global oldText
  2.  
  3. on mouseUp
  4.   puppetSound(2, "click")
  5.   member("blurb").text = "Click on the colored circles above to view images from 7 traditional categories."
  6.   oldText = member("blurb").text
  7.   set the foreColor of member "galleries tab text" to 215
  8.   go("cat")
  9. end
  10.  
  11. on mouseEnter
  12.   puppetSound(3, "over")
  13.   set the foreColor of member "categories tab text" to 0
  14. end
  15.  
  16. on mouseLeave
  17.   set the foreColor of member "categories tab text" to 215
  18. end
  19.